home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ MS Setup Default Names.xpl < prev    next >
Text File  |  1998-11-12  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="System\User Data"
  5. "NAME"="MS Setup Default Names"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Name"
  8. "TEXT 2"="Company"
  9. "DESCRIPTION 1"="If you install a program from Microsoft, SETUP.EXE searches for this two values and uses them as default values for your name and your company."
  10. "AUTHOR"="Xteq Systems"
  11. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  12. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  13. "COMMENT 2"="Version 1.1"
  14.  
  15.  
  16. sPath="HKCU\Software\Microsoft\MS Setup (ACME)\User Info\"
  17. Sub Plugin_Initialize 
  18.  if RegPathExists(sPath) then
  19.   s=RegReadValue(sPath & "DefName")
  20.   SetUIElement 1,s
  21.  
  22.   s=RegReadValue(sPath & "DefCompany")
  23.   SetUIElement 2,s
  24.  else
  25.   Disable
  26.  end if
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  s=GetUIElement(1)
  34.  Call RegWriteValue(sPath & "DefName",s,1)
  35.  
  36.  s=GetUIElement(2)
  37.  Call RegWriteValue(sPath & "DefCompany",s,1)
  38. End Sub
  39.  
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.  
  44.  
  45.  
  46.